home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Kompresni & kodovaci programy / ucl-0.91 / acconfig.h next >
C/C++ Source or Header  |  2000-02-23  |  3KB  |  117 lines

  1. /* acconfig.h -- autoheader configuration file
  2.  
  3.    This file is part of the UCL real-time data compression library.
  4.  
  5.    Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer
  6.  
  7.    The UCL library is free software; you can redistribute it and/or
  8.    modify it under the terms of the GNU General Public License as
  9.    published by the Free Software Foundation; either version 2 of
  10.    the License, or (at your option) any later version.
  11.  
  12.    The UCL library is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with the UCL library; see the file COPYING.
  19.    If not, write to the Free Software Foundation, Inc.,
  20.    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21.  
  22.    Markus F.X.J. Oberhumer
  23.    markus.oberhumer@jk.uni-linz.ac.at
  24.  */
  25.  
  26.  
  27. #ifndef __UCL_CONFIG_H
  28. #define __UCL_CONFIG_H
  29.  
  30. /* $TOP$ */
  31. @TOP@
  32.  
  33. /* acconfig.h
  34.  
  35.    Descriptive text for the C preprocessor macros that
  36.    the distributed Autoconf macros can define.
  37.    No software package will use all of them; autoheader copies the ones
  38.    your configure.in uses into your configuration header file templates.
  39.  
  40.    The entries are in sort -df order: alphabetical, case insensitive,
  41.    ignoring punctuation (such as underscores).  Although this order
  42.    can split up related entries, it makes it easier to check whether
  43.    a given entry is in the file.
  44.  
  45.    Leave the following blank line there!!  Autoheader needs it.  */
  46.  
  47.  
  48. /* Define to your byte order.  */
  49. #undef MFX_BYTE_ORDER
  50.  
  51. /* Define if your memcmp is broken.  */
  52. #undef NO_MEMCMP
  53.  
  54. /* Define to `long' if <stddef.h> doesn't define.  */
  55. #undef ptrdiff_t
  56.  
  57. /* The number of bytes in a ptrdiff_t.  */
  58. #undef SIZEOF_PTRDIFF_T
  59.  
  60. /* The number of bytes in a size_t.  */
  61. #undef SIZEOF_SIZE_T
  62.  
  63.  
  64.  
  65. /* Leave that blank line there!!  Autoheader needs it.
  66.    If you're adding to this file, keep in mind:
  67.    The entries are in sort -df order: alphabetical, case insensitive,
  68.    ignoring punctuation (such as underscores).  */
  69.  
  70.  
  71.  
  72. @BOTTOM@
  73.  
  74. /* $BOTTOM$ */
  75.  
  76. #if defined(HAVE_SYS_RESOURCE_H) && !defined(TIME_WITH_SYS_TIME)
  77. #  undef /**/ HAVE_SYS_RESOURCE_H
  78. #endif
  79.  
  80. #if defined(HAVE_SYS_TIMES_H) && !defined(TIME_WITH_SYS_TIME)
  81. #  undef /**/ HAVE_SYS_TIMES_H
  82. #endif
  83.  
  84. #if defined(NO_MEMCMP)
  85. #  undef /**/ HAVE_MEMCMP
  86. #endif
  87.  
  88. #if (SIZEOF_CHAR_P <= 0)
  89. #  undef /**/ SIZEOF_CHAR_P
  90. #endif
  91.  
  92. #if (SIZEOF_PTRDIFF_T <= 0)
  93. #  undef /**/ SIZEOF_PTRDIFF_T
  94. #endif
  95.  
  96. #if (SIZEOF_UNSIGNED <= 0)
  97. #  undef /**/ SIZEOF_UNSIGNED
  98. #endif
  99.  
  100. #if (SIZEOF_UNSIGNED_LONG <= 0)
  101. #  undef /**/ SIZEOF_UNSIGNED_LONG
  102. #endif
  103.  
  104. #if (SIZEOF_UNSIGNED_SHORT <= 0)
  105. #  undef /**/ SIZEOF_UNSIGNED_SHORT
  106. #endif
  107.  
  108. #if (SIZEOF_SIZE_T <= 0)
  109. #  undef /**/ SIZEOF_SIZE_T
  110. #endif
  111.  
  112. #endif /* already included */
  113.  
  114. /*
  115. vi:ts=4
  116. */
  117.